home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Devices / CD-ROM / iso9660 / Srcs / BuildISO.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-28  |  794 b   |  22 lines  |  [TEXT/MPS ]

  1. /************************************************************************
  2.  *
  3.  *  Function:        BuildISO.h
  4.  *
  5.  *  Purpose:        collect all the constants specific to building
  6.  *                    this bizzare little puppy.
  7.  *
  8.  *    Copyright © 1990 Apple Computer, Inc.  All rights reserved.
  9.  *
  10.  ************************************************************************/
  11. #define    LSBPATH        0x00000012L        /* location of the lsb path table */
  12. #define    MSBPATH        0x00000013L        /* location of the msb path table */
  13.  
  14. #define    DIRECTORY    0x00000014L        /* location of directory table */
  15. #define PATHTBLSIZE    0x0000000AL        /* size of each of the path tables */
  16.  
  17. #define DATASTART    0x00000015L        /* where the first data file starts */
  18.  
  19.     /* round up to the next CDBLKSIZE boundary */
  20. #define ROUND_UP(x)    ((x) + CDBLKSIZE -1) & ~(CDBLKSIZE-1)
  21.  
  22.